home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / diffs / texinfo-.1 / makeinfo / makefile.djg next >
Encoding:
Makefile  |  1994-08-05  |  769 b   |  31 lines

  1. *** orig/texinfo-.1/makeinfo/makefile.djg    Sun Aug 29 18:41:36 1993
  2. --- src/texinfo-.1/makeinfo/makefile.djg    Sun Nov 28 02:05:00 1993
  3. ***************
  4. *** 0 ****
  5. --- 1,25 ----
  6. + common=../libtxi
  7. + LOCDEFS = -DREMOVE_OUTPUT_EXTENSIONS
  8. + LIBS = -L$(common) -ltxi
  9. + LOADLIBES = $(LIBS)
  10. + LDFLAGS = -s
  11. + OBJS =  makeinfo.o
  12. + CFLAGS = -O2
  13. + all: makeinfo.exe makeinfo.info
  14. + makeinfo.exe: $(OBJS) $(common)/libtxi.a
  15. +     gcc $(LDFLAGS) -o makeinfo $(OBJS) $(LOADLIBES)
  16. +     coff2exe makeinfo
  17. + makeinfo.o: makeinfo.c $(common)/getopt.h
  18. +     gcc -c -I. -I$(common) $(LOCDEFS) $(CFLAGS) $*.c
  19. + makeinfo.info: makeinfo.exe makeinfo.texi
  20. +     makeinfo --no-split -I. makeinfo.texi -o makeinfo.info
  21. + clean :
  22. +     -del *.o
  23. +     -del makeinfo
  24.